type net.canceledError

4 uses

	net (current package)
		net.go#L412: 	errCanceled         = canceledError{}
		net.go#L418: type canceledError struct{}
		net.go#L420: func (canceledError) Error() string { return "operation was canceled" }
		net.go#L422: func (canceledError) Is(err error) bool { return err == context.Canceled }